/* 
Milestone Project style sheet
Filename: professional experience.css

Author: Andres Marzan
Date: 05/11/25
Project Milestone - IT240 Web Fluency
*/

html {
    font-size: 16px;
}
body, div, footer, header, h1, p {
    border: 0;
    padding: 0;
    margin: 0;
}

/* body and page container */
.container {
    max-width: 700px;
    margin: 0 auto;
    background-color: ivory;
    position: relative;
 }
 
 body {
    font-family:"Times New Roman", Times, serif;
    border-left: 1px skyblue;
    border-right: 1px skyblue;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 10px 6px -6px #777;
 }

/* skip navigation link */
p.skipnavigation a {
    position: absolute;
    left: -10000px;
}

p.skipnavigation a:focus {
    color: #34180f;
    background-color: black;
    top: 0.2em;
    left: 0.4em;
    z-index: 2;
}

 /* header section */
header {
    width: 100%;
    max-width: 700px;
    position: relative;
    padding: 0em;
    background-color: goldenrod;
 }
 h1 {
    padding: 0em;
    color: black;
    text-align: center;
    font-weight: 550;
    font-size: 3.5em;
    font-family: Italianno, 'Times New Roman', Times, serif;
    text-shadow: 2px -1px 2px gold
 }
header p {
   text-align: center;
   color: black;
   padding: 0.5em;
   font-size: 1.5em;
   font-style: italic;
   text-shadow: 2px -1px 2px gold
}

/* page navigation */

nav.pagenavigation {
    margin-top: 1em;
    text-align: center;
    color: rgb(252, 181, 0);
    background-color: red;
 }

 nav.pagenavigation p {
    display: inline-block;
    margin: 0.5em;
    padding: 0;
 }
 nav.pagenavigation a:link {
    text-decoration: none;
    color: rgb(252, 181, 0);
 }
 nav.pagenavigation a:visited {
    color: aliceblue;
 }
 nav.pagenavigation a:hover, nav.pagenaviation a:focus {
    color: ivory;
 }

h2 {
    font-size:1.3em;
    text-align: center;
    color: goldenrod;
    margin-bottom: 0.5em;
    position: relative;
}

 /* site navigation bar */
 nav.sitenavigation {
    background-color: black;
    text-align: center;
    font-style: italic;
    font-size: 1.2em;
 }
 nav.sitenavigation p {
    display: inline-block;
    margin: 0.4em 0.6em;
    font-size: 0.9em;
 }
 
 nav.sitenavigation a:link {
    color: goldenrod;
    text-decoration: none;
 }
 nav.sitenavigation a:visited {
    color: white;
}
nav.sitenavigation a:hover, nav.sitenavigation a:focus {
    color: yellow;
    text-shadow: 1px -1px 0 black;
}
nav.sitenavigation a:active {
    position: relative;
    top: 1px;
    left: 1px;
} 

 /* Main Content */
article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2% 1em;
    background-color: ivory;
    overflow: auto;
 }

 article h3, h4, h5, h6 {
    font-size: 1.3em;
    margin-bottom: 0em;
    color: goldenrod;
 }

 article p {
    padding-top: 2em;
    font-style: italic;
    font-weight: lighter;
 }

 article p.imagemap {
    text-align: center;
 }
 article p.imagemap img {
    border: 1px solid black;
    max-width: none;
 }
 article figure {
    max-width: 100%;
    margin-left: 2em;
    float: right;
 }

 article figure.picture {
    margin-top: 2em;
 }

  /* footer section */
  footer {
    padding: 0.6em;
    background-color: goldenrod;
    text-align: center;
    clear: right;
    margin: 0em;
}
footer p {
    color: black;
    font-size: 1.5em;
    font-style: italic;
    text-shadow: 2px -1px 2px gold
 }

/* print styles */
@media print {
    .container, h1, h2, header p, p {
       color: black;
       background-color: white;
    }
    nav {
     display: none;
    }
 }
 @page {
    margin: 1in;
 }